December 31, 2018

Requirements:

Create a web page presentation using R Markdown that features a plot created with Plotly. Host your webpage on either GitHub Pages, RPubs, or NeoCities. Your webpage must contain the date that you created the document, and it must contain a plot created with Plotly. We would love to see you show off your creativity!

  • Have used time series dataset (austres) from library datasets.
  • Numbers (in thousands) of Australian residents measured quarterly from March 1971 to March 1994.
  • The object is of class “ts”.
library(plotly)
## Loading required package: ggplot2
## 
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout
library(datasets)
library(zoo)
## 
## Attaching package: 'zoo'
## The following objects are masked from 'package:base':
## 
##     as.Date, as.Date.numeric
data(austres)
library(reshape2)
df <- data.frame(value=as.matrix(austres), date=as.Date(as.yearmon(time(austres))))

Slide with Plot